dbt build | builds and tests all selected resources (models, seeds, tests, and snapshots) |
dbt run | run all models excluding tests |
dbt compile | compile all models to sql. Available under the target folder |
dbt docs | generates and serves dbt docs from the dbt project |
dbt run-operation | used to invoke a dbt macro from the command line |
dbt seed | load CSV files located in the the seeds folder into the target database |
dbt show | executes the sql query without any materilzations and displays the results in terminal |
dbt snapshot | executes snapshot jobs defined in the snapshot folder of the project |
dbt source | profives tools for working with source data, ensuring source is fresh |